From: Richard M. Stallman Date: Sat, 12 Jun 1993 16:57:29 +0000 (+0000) Subject: (Fset_syntax_table): Add XFASTINT. X-Git-Tag: archive/raspbian/1%29.2+1-2+rpi1^2~5^2~95376 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:///%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:/?a=commitdiff_plain;h=f110a664783fa577f33e45d0f066e7203f6ea22b;p=emacs.git (Fset_syntax_table): Add XFASTINT. --- diff --git a/src/syntax.c b/src/syntax.c index 4386ea2db0c..e11c5d1c341 100644 --- a/src/syntax.c +++ b/src/syntax.c @@ -173,7 +173,8 @@ One argument, a syntax table.") table = check_syntax_table (table); current_buffer->syntax_table = table; /* Indicate that this buffer now has a specified syntax table. */ - current_buffer->local_var_flags |= buffer_local_flags.syntax_table; + current_buffer->local_var_flags + |= XFASTINT (buffer_local_flags.syntax_table); return table; }